home *** CD-ROM | disk | FTP | other *** search
/ Programming Sound Cards / Programming Sound Cards.iso / sound_78 / snddemo.doc < prev    next >
Text File  |  1995-01-01  |  2KB  |  39 lines

  1.  
  2.  
  3.  
  4.       Snddemo - Sound Effects Demo.
  5.  
  6.       Snddemo is an interactive function evaluation/development
  7.       program. You can use Snddemo to evaluate the functions in
  8.       the Sefx library or as a development tool for finding the
  9.       parameters that create the desired sound effect. The later
  10.       use can save time by avoiding the recompile trial and error
  11.       method.
  12.  
  13.       The parameters to the sound generation functions can be changed
  14.       on the fly in the editing fields. Notice that any sound in the
  15.       sound queue continues to play while you edit the fields. The
  16.       parameters, if any, to the control functions are cycled/toggled
  17.       when the function is invoked.
  18.  
  19.       All the functions are invoked by F-keys. When the sound
  20.       generation functions are invoked, the current parameters are
  21.       used even if it is currently being edited.
  22.  
  23.       The source code for Snddemo is provided for your inspection.
  24.       It is, however, compiled with function that are exclusive to
  25.       the Borland/Turbo C run time library. Specifically those prototyped
  26.       in conio.h. If you have similar functions in your C compiler's run
  27.       time library or you have an extended windows library, you could easily
  28.       replace them. There are not that many. They are as follows:
  29.  
  30.  
  31.  
  32.                 gotoxy()         - Locates the cursor.
  33.                 _setcursortype() - Sets the cursor type
  34.                 clrscr()         - Clears the window.
  35.                 textattr()       - Sets the text attributes.
  36.                 cprintf()        - similar to printf()
  37.                 cputs()          - similar to puts()
  38.                 putch()          - puts a single char
  39.